From 5a01208f55f382cd1baa80af118faff21ac6b07e Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Thu, 6 Nov 2014 01:04:13 -0500 Subject: [PATCH] GtkHeaderBar: Queue a resize when pack-type is changed Otherwise, buttons appear to stick to the wrong side in glade. --- gtk/gtkheaderbar.c | 1 + 1 file changed, 1 insertion(+) diff --git a/gtk/gtkheaderbar.c b/gtk/gtkheaderbar.c index 20c688225d..63c05b8f2e 100644 --- a/gtk/gtkheaderbar.c +++ b/gtk/gtkheaderbar.c @@ -1697,6 +1697,7 @@ gtk_header_bar_set_child_property (GtkContainer *container, case CHILD_PROP_PACK_TYPE: child->pack_type = g_value_get_enum (value); _gtk_header_bar_update_separator_visibility (bar); + gtk_widget_queue_resize (widget); break; case CHILD_PROP_POSITION: -- 2.30.2